home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DDJMAG / DDJ9310.ZIP / DFPP03.ZIP / TEDTOOLS.H < prev    next >
C/C++ Source or Header  |  1993-09-15  |  293b  |  19 lines

  1. // ---------- tedtools.h
  2.  
  3. #ifndef TEDTOOLS_H
  4. #define TEDTOOLS_H
  5.  
  6. #include "toolbar.h"
  7.  
  8. // -------- the TED toolbar
  9. class TedTools : public ToolBar    {
  10.     ToolButton newtool;
  11.     ToolButton opentool;
  12.     ToolButton savetool;
  13. public:
  14.     TedTools(DFWindow *par);
  15. };
  16.  
  17. #endif
  18.  
  19.